home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / rpc / IResponder.as
Encoding:
Text File  |  2009-02-12  |  167 b   |  11 lines

  1. package mx.rpc
  2. {
  3.    public interface IResponder
  4.    {
  5.       function fault(param1:Object) : void;
  6.       
  7.       function result(param1:Object) : void;
  8.    }
  9. }
  10.  
  11.